home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 964 b | 49 lines | [TEXT/MPS ] |
- ;
- ; Generic LaserWriter.a
- ;
- ; this file contains a jump table for the generic LaserWriter driver
- ;
- ; © 1992-1994 Apple Computer Inc.
- ;
- ; 2/11/94 - dmh - Added custom old-API dialogs.
- ;
-
- STRING ASIS
- CASE OBJ
-
-
- DriverJumpTable PROC EXPORT
-
- EXPORT referenceCount
-
- referenceCount DC.L 0
-
- IMPORT DriverInitialize
- JMP DriverInitialize
-
- IMPORT DriverShutDown
- JMP DriverShutDown
-
- IMPORT DriverPrDlgMain
- JMP DriverPrDlgMain
-
- IMPORT DriverPrStlInit
- JMP DriverPrStlInit
-
- IMPORT DriverPrJobInit
- JMP DriverPrJobInit
-
- IMPORT DriverPrValidate
- JMP DriverPrValidate
-
- IMPORT DriverPrintDefault
- JMP DriverPrintDefault
-
- IMPORT DriverConvertPrintRecordTo
- JMP DriverConvertPrintRecordTo
-
- IMPORT DriverConvertPrintRecordFrom
- JMP DriverConvertPrintRecordFrom
-
- END
-